home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / sys / sysTestCall.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  663b  |  26 lines

  1. /*
  2.  * sysTestCall.h --
  3.  *
  4.  *     The test system calls for debugging.
  5.  *
  6.  * Copyright (C) 1985 Regents of the University of California
  7.  * All rights reserved.
  8.  *
  9.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/sys/sysTestCall.h,v 9.3 91/03/30 17:21:39 mendel Exp $ SPRITE (Berkeley)
  10.  *
  11.  */
  12.  
  13. #ifndef _SYSTESTCALL
  14. #define _SYSTESTCALL
  15.  
  16. #include <sprite.h>
  17. #include <sys.h>
  18.  
  19. extern    int     Test_PrintOut _ARGS_((int arg0, int arg1, int arg2, int arg3, 
  20.                       int arg4, int arg5, int arg6, int arg7, 
  21.                       int arg8, int arg9));
  22. extern    int    Test_GetLine _ARGS_((char *string, int length));
  23. extern    int    Test_GetChar _ARGS_((char *charPtr));
  24.  
  25. #endif /* _SYSTESTCALL */
  26.